Read(Byte[],Int32,Int32) Method
In This Topic
Reads a sequence of bytes from the current
OracleBFile stream and advances the position within the stream by the number of bytes read.
Syntax
'Declaration
Public Overloads Overrides NotOverridable Function Read( _
ByVal () As Byte, _
ByVal As Integer, _
ByVal As Integer _
) As Integer
public override int Read(
byte[] ,
int ,
int
)
Parameters
- buffer
- The byte array buffer to be populated.
- offset
- The zero-based byte offset in the buffer.
- count
- The amount of bytes to read.
Return Value
The total number of bytes read into the buffer.
See Also